home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / vprintf.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  92 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     91.12.02.20.06.08;  author kupfer;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.20.06.38;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @"vprintf" library routine.
  22. @
  23.  
  24.  
  25.  
  26. 1.1
  27. log
  28. @Initial revision
  29. @
  30. text
  31. @/* 
  32.  * vprintf.c --
  33.  *
  34.  *    Source code for the "vprintf" library procedure.
  35.  *
  36.  * Copyright 1988 Regents of the University of California
  37.  * Permission to use, copy, modify, and distribute this
  38.  * software and its documentation for any purpose and without
  39.  * fee is hereby granted, provided that the above copyright
  40.  * notice appear in all copies.  The University of California
  41.  * makes no representations about the suitability of this
  42.  * software for any purpose.  It is provided "as is" without
  43.  * express or implied warranty.
  44.  */
  45.  
  46. #ifndef lint
  47. static char rcsid[] = "$Header: printf.c,v 1.2 88/07/11 16:02:22 ouster Exp $ SPRITE (Berkeley)";
  48. #endif not lint
  49.  
  50. #include <stdio.h>
  51. #include <varargs.h>
  52.  
  53. /*
  54.  *----------------------------------------------------------------------
  55.  *
  56.  * vprintf --
  57.  *
  58.  *    Format and print one or more values, writing the output onto
  59.  *    stdout.  See the manual page for details of how the format
  60.  *    string is interpreted.
  61.  *
  62.  * Results:
  63.  *    The return value is a count of the number of characters
  64.  *    written to stdout.
  65.  *
  66.  * Side effects:
  67.  *    None.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72. int
  73. vprintf(format, args)
  74.     char *format;        /* Format string.  See man page for details. */
  75.     va_list args;        /* Variable-length list of arguments, already
  76.                  * packaged using the varargs macros. */
  77. {
  78.     return vfprintf(stdout, format, args);
  79. }
  80. @
  81.  
  82.  
  83. 1.1.1.1
  84. log
  85. @Initial branch for Sprite server.
  86. @
  87. text
  88. @d17 1
  89. a17 1
  90. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vprintf.c,v 1.1 91/12/02 20:06:08 kupfer Exp $ SPRITE (Berkeley)";
  91. @
  92.